home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / WSSAVSCR.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  42 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _WSSaveScreen( cFileName ) --> lSuccess
  8.  
  9. PARAMETERS:
  10.  
  11. None
  12.  
  13. SHORT:
  14.  
  15. Screen capture utility (WordStar format).
  16.  
  17. DESCRIPTION:
  18.  
  19. _WSSaveScreen() saves the contents of the screen to a text file specified
  20. in cFileName, in WordStar format.
  21.  
  22. If the file specified in cFileName does not exist, it is created. If it
  23. does exist, the contents of the screen are appended to it.
  24.  
  25. Returns TRUE if successfully saved, else FALSE
  26.  
  27. NOTE:
  28.  
  29. This function is similar to _WSPop_Scr_Save(), only the file name is
  30. specified in a parameter to the function rather than prompted for at
  31. run-time.
  32.  
  33. EXAMPLE:
  34.  
  35. _WSSaveScreen('THIS_SCR.TXT')
  36.  
  37. Results: The current contents of the screen are saved to a file
  38. called THIS_SCR.TXT in a WORDSTAR compatible format. If the file
  39. THIS_SCR.TXT does not exist, it is created, else it is appended to.
  40.  
  41. ******************************************************************************/
  42.